home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Freeware / Miro 1.0 / Miro_Installer.exe / chrome / content / searchchannel.xul < prev    next >
Encoding:
Extensible Markup Language  |  2007-11-12  |  1.9 KB  |  55 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin" type="text/css"?>
  3. <?xml-stylesheet href="main.css" type="text/css"?>
  4.  
  5. <!DOCTYPE window SYSTEM "chrome://dtv/locale/searchchannel.dtd">
  6.  
  7. <!-- add hidechrome="true" to eliminate title bar -->
  8. <dialog id="democracy-searchchannel" title="&searchchannel.title;"
  9.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  10.     xmlns:html="http://www.w3.org/1999/xhtml"
  11.         onload="onload();"
  12.     orient="vertical"
  13.         buttons="accept,cancel"
  14.         buttonlabelaccept="&searchchannel.createchannel;"
  15.         ondialogaccept="onaccept();"
  16.         ondialogcancel="oncancel();"
  17.         class="searchchannel">
  18. <script src="chrome://dtv/content/main.js" />
  19. <script src="chrome://dtv/content/searchchannel.js" />
  20. <vbox>
  21.     <description style="padding-top:5px;">
  22.         &searchchannel.description;
  23.     </description>
  24.     <hbox>
  25.         <description style="padding-top:4px;">&searchchannel.termlabel;</description>
  26.         <textbox id="textbox-term"/>
  27.     </hbox>
  28.     <radiogroup id="radio-style">
  29.         <hbox>
  30.             <description>&searchchannel.inthis;</description>
  31.             <grid>
  32.                 <columns>
  33.                     <column/>
  34.                     <column/>
  35.                 </columns>
  36.             <rows>
  37.                 <row>
  38.                 <radio id="radio-channel" label="&searchchannel.channel;" selected="true" oncommand="updateUI();"/>
  39.                 <menulist id="menulist-channel"/>
  40.                 </row>
  41.                 <row>
  42.                 <radio id="radio-searchengine" label="&searchchannel.searchengine;" oncommand="updateUI();"/>
  43.                 <menulist id="menulist-searchengine"/>
  44.                 </row>
  45.                 <row>
  46.                 <radio id="radio-url" label="&searchchannel.url;" oncommand="updateUI();"/>
  47.                 <textbox id="textbox-url"/>
  48.                 </row>
  49.             </rows>
  50.             </grid>
  51.         </hbox>
  52.     </radiogroup>
  53. </vbox>
  54. </dialog>
  55.